.custom-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
  }

  .custom-section {
    margin-bottom: 30px;
  }

  .custom-heading {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    position: relative;
  }

  .custom-heading::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100px;
    height: 2px;
    background-color: #007bff;
  }

  .custom-post {
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
  }

  .custom-post:hover {
    transform: translateY(-5px);
  }

  .custom-post img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
    border: 10px solid #f8f9fa; /* Adding a frame */
  }

  .custom-post-content {
    padding: 20px;
  }

  .custom-post h3 {
    margin-top: 0;
    color: #007bff;
    font-size: 24px;
    margin-bottom: 10px;
    text-decoration: underline;
  }

  .custom-post p {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.5;
  }

  .custom-post-category {
    margin-bottom: 10px;
    color: #666;
    font-size: 16px;
    font-style: italic;
  }

  .custom-author {
    display: flex;
    align-items: center;
    margin-top: 10px;
  }

  .custom-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #007bff; /* Adding a frame */
  }

  .custom-author-name {
    font-weight: bold;
    color: #007bff;
    font-size: 18px;
  }

  .custom-read-more {
    display: inline-block;
    padding: 8px 15px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  .custom-read-more:hover {
    background-color: #0056b3;
  }

  .custom-load-more {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }